home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 10 / BBS In A Box Volume X (AMUG) (January 1994).bin / Files / Prog / B-C / C++ FAQ Reference 1.0.cpt / C++ FAQ Reference 1.0.rsrc / STR#_138.txt < prev    next >
Encoding:
Text File  |  1993-06-30  |  1.5 KB  |  52 lines

  1. Do most C++ programmers use containment or private inheritance?
  2.  
  3. What are the access rules with 'private' and 'protected' inheritance?
  4.  
  5. Should I pointer-cast from a 'protected' derived class to its base class?
  6.  
  7. Should I pointer-cast from a 'privately' derived class to its base class?
  8.  
  9. How are 'private derivation' and 'containment' similar? dissimilar?
  10.  
  11. How do you express 'private inheritance'?
  12.  
  13. Does a derived class dtor need to explicitly call the base destructor?
  14. Inheritance -- private and protected inheritance
  15.  
  16. Why does base ctor get *base*'s virtual fn instead of the derived version?
  17.  
  18. How can I protect subclasses from breaking when I change internal parts?
  19. Inheritance -- constructors and destructors
  20.  
  21. What's the difference between 'public:', 'private:', and 'protected:'?
  22.  
  23. Why can't I access 'private' things in a base class from a derived class?
  24.  
  25. Are there other options to the 'Circle is/isnot kind-of Ellipse' dilemma?
  26.  
  27. Is a 'Circle' a kind-of an 'Ellipse'?
  28.  
  29. Can I 'revoke' or 'hide' public member fns inherited from my base class?
  30.  
  31. Can I override a non-virtual fn?
  32. Inheritance -- conformance
  33.  
  34. What is dynamic dispatch?  Static dispatch?
  35.  
  36. What is a 'virtual member function'?
  37.  
  38. Does array-of-Derived is-NOT-a-kind-of array-of-Base mean arrays are bad?
  39.  
  40. Derived* --> Base* works ok; why doesn't Derived** --> Base** work?
  41.  
  42. Should I pointer-cast from a derived class to its base class?
  43.  
  44. What is 'incremental programming'?
  45.  
  46. How do you express inheritance in C++?
  47.  
  48. Ok, ok, but what is inheritance?
  49.  
  50. What is inheritance?
  51.  
  52.